crypto/tls.Conn.hand (field)
16 uses
crypto/tls (current package)
conn.go#L105: hand bytes.Buffer // handshake data waiting to be read
conn.go#L705: if c.vers == VersionTLS13 && typ != recordTypeHandshake && c.hand.Len() > 0 {
conn.go#L750: if c.hand.Len() > 0 {
conn.go#L786: c.hand.Write(data)
conn.go#L1083: for c.hand.Len() < n {
conn.go#L1098: data := c.hand.Bytes()
conn.go#L1119: data = c.hand.Next(4 + n)
conn.go#L1396: for c.hand.Len() > 0 {
conn.go#L1690: if c.hand.Len() != 0 {
handshake_server_tls13.go#L528: if c.hand.Len() != 0 {
quic.go#L292: c.hand.Write(c.quic.readbuf)
quic.go#L294: for q.conn.hand.Len() >= 4 && q.conn.handshakeErr == nil {
quic.go#L295: b := q.conn.hand.Bytes()
quic.go#L398: for c.hand.Len() < n {
quic.go#L411: if c.hand.Len() != 0 {
quic.go#L524: c.hand.Write(c.quic.readbuf)
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |